From: Ted Zlatanov Date: Sat, 20 Mar 2010 19:21:44 +0000 (-0500) Subject: Fix unbalanced parenthesis in secrets.el. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~8337 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=0532175eda43bc63d8c93a2b28a16e296d16d52c;p=emacs.git Fix unbalanced parenthesis in secrets.el. Fix parenthesis. (secrets-enabled): Fix parenthesis. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 32bb1aa7120..42cc774afc9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-03-20 Teodor Zlatanov + + * net/secrets.el: Fix parenthesis. + (secrets-enabled): Fix parenthesis. + 2010-03-20 Stefan Monnier * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738). diff --git a/lisp/net/secrets.el b/lisp/net/secrets.el index 5fa10e284a4..c45f6fbb276 100644 --- a/lisp/net/secrets.el +++ b/lisp/net/secrets.el @@ -149,7 +149,7 @@ (require 'dbus) (defvar secrets-enabled nil - "Whether there is a daemon offering the Secret Service API." + "Whether there is a daemon offering the Secret Service API.") (defvar secrets-debug t "Write debug messages") @@ -693,7 +693,7 @@ If there is no such item, or the item doesn't own this attribute, return nil." ;; We shall inform, whether the secret service is enabled on this ;; machine. - (setq secrets-enabled t))) + (setq secrets-enabled t)) (provide 'secrets)